home *** CD-ROM | disk | FTP | other *** search
/ MacFormat UK 38 / MF_UK_38_1.iso / Tutorials / AMT Tutorial / MacFormat at the Movies.k < prev    next >
Encoding:
Text File  |  1996-04-17  |  1.4 KB  |  99 lines  |  [TEXT/MPS ]

  1. program()
  2.     do
  3.         oXVR.XVRInit(); -- Initialize VR library
  4.         oApplication.Main(oBinder, oSorter);
  5.         oXVR.XVRExit(); -- Terminate VR library
  6.     end;
  7.  
  8. include "keyKernel":
  9.     ANY;
  10.     ALIEN;
  11.     ARRAY;
  12.     BOOLEAN;
  13.     CHARACTER;
  14.     COLLECTION;
  15.     DEBUGGER;
  16.     HANDLE;
  17.     INTEGER;
  18.     MEMORY;
  19.     MESSAGE;
  20.     MODULES;
  21.     NONE;
  22.     POINTER;
  23.     RATIONAL;
  24.     REAL;
  25.     SIGNATURE;
  26.     STRING;
  27.     TYPE;
  28.     VECTOR;
  29. end;
  30.  
  31. include "keyInterface" debug "keyTitleDebug" release "keyTitleRelease":
  32.     Behavior;
  33.     Binder;
  34.     Container;
  35.     Folder;
  36.     Handler;
  37.     Sorter;
  38.     Supplier;
  39. end;
  40.  
  41. include "keyRuntime" debug "keyTitleDebug" release "keyTitleRelease":
  42.     AmbientSound;
  43.     AudioCDHandler;
  44.     Clock;
  45.     ColorHandler;
  46.     Controlbar;
  47.     Cursor;
  48.     DefaultBinder;
  49.     DefaultContainer;
  50.     DefaultHandler;
  51.     DefaultSupplier;
  52.     Effects;
  53.     EmptyHandler;
  54.     Exception;
  55.     FieldHandler;
  56.     FlipbookHandler;
  57.     FlipbookSupplier;
  58.     Interlude;
  59.     KeyboardHandler;
  60.     MovieControllerHandler;
  61.     MovieHandler;
  62.     MovieSupplier;
  63.     PictureHandler;
  64.     PictureResourceSupplier;
  65.     PictureScrollerHandler;
  66.     PictureSupplier;
  67.     PreferenceFolder;
  68.     PrinterHandler;
  69.     Random;
  70.     Scrollbar;
  71.     SoundHandler;
  72.     SoundSupplier;
  73.     TextHandler;
  74.     TextScrollerHandler;
  75.     TextSupplier;
  76. end;
  77.  
  78. include "keyTitle" debug "keyTitleDebug" release "keyTitleRelease":
  79.     Application;
  80.     DefaultBehavior;
  81.     DefaultFolder;
  82.     DefaultSorter;
  83. end;
  84.  
  85. include "vreRuntime" debug "keyTargetDebug" release "keyTargetRelease":
  86.     VRBehavior;
  87.     VRBinder;
  88.     VRHandler;
  89.     VRSupplier;
  90.     XVR;
  91. end;
  92.  
  93. include ":SOURCES:":
  94.     Hierarchy;
  95.     Media;
  96.     oMain_1;
  97. end;
  98.  
  99.